home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / GCC-2.3.3r12 / Sources-Targets / xm-crds.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-05  |  358 b   |  22 lines  |  [TEXT/MPS ]

  1. #define USG
  2.  
  3. #ifndef unos
  4. #define unos
  5. #endif
  6.  
  7. #include "xm-m68k.h"
  8.  
  9. #define bcopy(a,b,c) memcpy (b,a,c)
  10. #define bzero(a,b) memset (a,0,b)
  11. #define bcmp(a,b,c) memcmp (a,b,c)
  12.  
  13. /* Avoid conflict with C library by changing name of this symbol.  */
  14. #define gettime gcc_gettime
  15.  
  16. #ifndef __GNUC__
  17. #define USE_C_ALLOCA
  18. #else
  19. #define alloca __builtin_alloca
  20. #endif
  21.  
  22.